home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Gigarom 4
/
Mac Giga-ROM 4.0 - 1993.toast
/
FILES
/
DEV
/
I-Z
/
Texx02.sea
/
Texx Folder
/
Shutdown.exec
< prev
next >
Wrap
Text File
|
1992-08-18
|
727b
|
23 lines
/* Shutdown.exec */
say 'Shutdown.exec';
say 'Date of last change - 08/18/92';
address finder;
if rc = 0 then
do /* Address successfull */
/* If MS Word temp files exist, move them to the trash */
/* Set up a path to the system folder */
path BootDrive() || 'system folder';
do i = 1 to 4
if FileExists( 'Word Temp ' || i ) then
Move Selection 'Word Temp ' || i 0 0 BootDrive() || 'Trash';
end;
/* now empty the trash */
empty trash;
if rc <> 0 then
say 'Profile.exec -- Empty Trash failed';
end;
else /* Address failed, inform user */
say 'Shutdown.exec -- Address finder failed';
/* insert other commands here */
say 'End of Shutdown.exec';